home *** CD-ROM | disk | FTP | other *** search
- unit Myvcsopn;
-
- interface
-
- uses
- SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
- StdCtrls, ExtCtrls, Forms, FileCtrl, Buttons;
-
- type
- TVCSOpenForm = class(TForm)
- BitBtn1: TBitBtn;
- BitBtn2: TBitBtn;
- DriveComboBox1: TDriveComboBox;
- FileListBox1: TFileListBox;
- DirectoryListBox1: TDirectoryListBox;
- FilterComboBox1: TFilterComboBox;
- Edit1: TEdit;
- Label1: TLabel;
- Label2: TLabel;
- Label3: TLabel;
- Label4: TLabel;
- Label5: TLabel;
- end;
-
- var
- VCSOpenForm: TVCSOpenForm;
-
- implementation
-
- {$R *.DFM}
-
- end.
-